home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / icfontab.c < prev    next >
C/C++ Source or Header  |  1995-11-02  |  2KB  |  52 lines

  1. /* Copyright (C) 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* icfontab.c */
  20. /* Table of compiled fonts */
  21. #include "ccfont.h"
  22.  
  23. /* This is compiled separately and linked with the fonts themselves, */
  24. /* in a shared library when applicable. */
  25.  
  26. #undef font_
  27. #define font_(fname, fproc, zfproc) extern ccfont_fproc fproc;
  28. #ifndef GCONFIGF_H
  29. # include "gconfigf.h"
  30. #else
  31. # include GCONFIGF_H
  32. #endif
  33.  
  34. private ccfont_fproc *fprocs[] = {
  35. #undef font_
  36. #define font_(fname, fproc, zfproc) &fproc, /* fname, zfproc are not needed */
  37. #ifndef GCONFIGF_H
  38. # include "gconfigf.h"
  39. #else
  40. # include GCONFIGF_H
  41. #endif
  42.   0
  43. };
  44.  
  45. int
  46. ccfont_fprocs(int *pnum_fprocs, ccfont_fproc ***pfprocs)
  47. {
  48.   *pnum_fprocs = countof(fprocs) - 1;
  49.   *pfprocs = &fprocs[0];
  50.   return ccfont_version;    /* for compatibility checking */
  51. }
  52.